博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
开始Flask项目
阅读量:5054 次
发布时间:2019-06-12

本文共 1120 字,大约阅读时间需要 3 分钟。

  1. 新建Flask项目。
  2. 设置调试模式。
  3. 理解Flask项目主程序。
  4. 使用装饰器,设置路径与函数之间的关系。
  5. 使用Flask中render_template,用不同的路径,返回首页、登录员、注册页。
  6. 用视图函数反转得到URL,{
    {url_for(‘login’)}},完成导航条里的链接。
    from flask import Flask,render_templateapp = Flask(__name__)@app.route('/')def jianshu2():    return render_template('jianshu2.html')@app.route('/login/')def login():    return render_template('login.html')@app.route('/register/')def register():    return render_template('register.html')if __name__ == '__main__':    app.run(debug=True)

    导航代码

            
    Title

    简书

     

     

转载于:https://www.cnblogs.com/222ya/p/7780716.html

你可能感兴趣的文章
web服务器
查看>>
2-SAT
查看>>
SQL Server 2008 下载及版本说明
查看>>
【转】div居中代码 DIV水平居中显示CSS代码
查看>>
git 基础使用
查看>>
死磕mysql(6)
查看>>
LR录制https协议设置方法
查看>>
删除xcode 里的多余证书
查看>>
Note:Spring Roo 1.2.1调通的第一个例子
查看>>
hdu 1529 Cashier Employment 差分约束系统
查看>>
Select Option Specifiers——Select 选项指定器
查看>>
A1023 瓷砖铺放
查看>>
django中间件
查看>>
ubuntu安装谷歌浏览器
查看>>
python web cgi
查看>>
一小时搞定DIV+CSS布局-固定页面开度布局
查看>>
ROS(机器视觉)
查看>>
HDU 5877 Weak Pair(树状数组+dfs+离散化)
查看>>
CSU 2005 Nearest Maintenance Point(最短路+bitset)
查看>>
python 2.x 中print >> sys.out ,print 与sys.out.write()的关系
查看>>